home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CSCROLLL / CSCROLLL.H1 < prev   
Text File  |  1992-02-19  |  700b  |  31 lines

  1. /*************************************************************************************
  2.  
  3.  CScrollList.h
  4.     
  5.     SUPERCLASS = CArrayPane
  6.     
  7.         by Dave Harkness
  8.  
  9. *************************************************************************************/
  10.  
  11.  
  12. #define _H_CScrollList
  13.  
  14. #include "CArrayPane.h"
  15.  
  16.  
  17. class CScrollList : public CArrayPane
  18. {
  19. public:
  20.     void IScrollList( CView *anEnclosure, CBureaucrat *aSupervisor,
  21.                             short aWidth, short aHeight,
  22.                             short aHEncl, short aVEncl,
  23.                             SizingOption aHSizing, SizingOption aVSizing);
  24.     
  25.     virtual void        CreateTextEnvironment( void);
  26.     
  27.     virtual void        AdjustCursor( Point where, RgnHandle mouseRgn);
  28.     
  29.     virtual CMouseTask    *MakeMouseTask( short modifiers);
  30.  
  31. };